home *** CD-ROM | disk | FTP | other *** search
/ Especial Multimedia / Especial Multimedia.iso / Multimed / Herra / TIMWIN.ZIP / WINLUT.CMD < prev    next >
OS/2 REXX Batch file  |  1993-09-22  |  626b  |  33 lines

  1. ;winlut  --  loads look up table palettes for windows images
  2. ;            The LUTs are conform the conventions, set with
  3. ;            TIMWIN's frame grabber LUTs:
  4. ;
  5. ; 1 - standard black and white
  6. ; 2 - red, green and blue in the 3 most significant bits
  7. ; 3 - red in the least significant bit
  8. ; 4 - red, green, blue in the 3 LSbits
  9. ;
  10. parms
  11.   int selected = 1
  12. endparms
  13.  
  14. switch selected
  15.   case 1
  16.     lut 3 1 1
  17.   case 2
  18.     lut 3 1 5 6
  19.   case 3
  20.     lut 3 0 1
  21.     lut 3 1 7 1
  22.   case 4
  23.     lut 3 0 1
  24.     lut 3 0 7 1
  25.     lut 3 0 8 2
  26.     lut 3 1 9 3
  27.   default
  28.     stop "Illegal selection"
  29. endsw
  30.  
  31. stop
  32.  
  33.